home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Bus / T-Z / VCR+(app+src) Folder / Sources / PStringStuff.h < prev    next >
Encoding:
Text File  |  1993-02-01  |  565 b   |  14 lines  |  [TEXT/KAHL]

  1. void    CopyPString(ConstStr255Param srcString, Str255 destString);
  2. void    Pcharcat(Str255 srcString, char addThis);
  3. void    ConcatPStrings(Str255 first, ConstStr255Param second);
  4. void    int2Str(short theNum, Str255 theString);
  5. void PsubStr(unsigned char *dest, short startPos, short endPos);
  6. Boolean Pstrcmp(unsigned char *string1, unsigned char *string2);
  7. void    stripColons(Str255 theString);
  8. int    findString(Str255 strToFind, Str255 strToSearch);
  9.  
  10.  
  11. #define    Max(x,y)        ((x) > (y) ? (x) : (y))
  12. #define    Min(x,y)        ((x) < (y) ? (x) : (y))
  13. #define    Abs(x)        ((x) < (0) ? (-x) : (x))
  14.